home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 141
/
(Vol 141) Oct 17 2011.iso
/
Games
/
global-one-water.swf
/
scripts
/
DefineSprite_431
/
frame_1
/
DoAction_3.as
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2011-10-17
|
282 b
|
17 lines
name_txt.onSetFocus = function()
{
Key.addListener(name_txt);
};
name_txt.onKillFocus = function()
{
Key.removeListener(name_txt);
};
name_txt.onKeyDown = function()
{
if(Key.getCode() == 13)
{
Key.removeListener(this);
createUser();
}
};